-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
42 lines (36 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import os
import re
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
def read_version():
with open('filestack/__init__.py') as f:
return re.search(r'__version__ = \'(.+)\'$', f.readline()).group(1)
setup(
name='filestack-python',
version=read_version(),
license='Apache 2.0',
description='Filestack Python SDK',
long_description='Visit: https://github.com/filestack/filestack-python',
url='https://github.com/filestack/filestack-python',
author='filestack.com',
author_email='[email protected]',
packages=find_packages(),
install_requires=[
'requests>=2.31.0',
'trafaret==2.0.2'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
],
)