-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.24 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
import os
import re
from setuptools import setup, find_packages
scriptdir = os.path.dirname(os.path.abspath(__file__))
with open(os.path.join(scriptdir, 'requirements.txt')) as f:
requirements = f.read().splitlines()
with open(os.path.join(scriptdir, 'README.md')) as f:
long_description = f.read()
with open(os.path.join(scriptdir, 'posidrive/__init__.py')) as f:
version = re.search(r"__version__\s*=\s*'(.*?)'", f.read()).group(1)
setup(name='posidrive',
packages=find_packages(),
version=version,
license='BSD License',
author='Arthur Goncharuk',
author_email='[email protected]',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Positeral/posidrive',
install_requires=requirements,
python_requires='>=3.6',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
'Topic :: Software Development :: Libraries',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
]
)