We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abe4b76 commit 4283976Copy full SHA for 4283976
setup.py
@@ -1,18 +1,14 @@
1
# coding: utf-8
2
3
"""
4
- Flat API 2.20.0
5
-
6
- OpenAPI spec version:
7
- Contact: developers@flat.io
+ Flat API
8
9
10
11
import sys
12
from setuptools import setup, find_packages
+from flat_api import __version__
13
14
-NAME = "flat_api"
15
-VERSION = "1.1.0"
16
# To install the library, run the following
17
#
18
# python setup.py install
@@ -31,8 +27,8 @@
31
27
LONG_DESCRIPTION = open('README.md').read()
32
28
33
29
setup(
34
- name=NAME,
35
- version=VERSION,
30
+ name="flat_api",
+ version=__version__,
36
description="Flat API Client",
37
author="The Flat Team (https://flat.io)",
38
author_email="developers@flat.io",
0 commit comments