-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 827 Bytes
/
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
import os
from setuptools import setup
setup(
name='fastprocess',
version='2.0.0',
author='Dylan Stephano-Shachter',
author_email='[email protected]',
description=('A fast subprocess library'),
license='LGPL',
url='https://github.com/dstathis/fastprocess',
packages=['fastprocess'],
python_requires='>=3.8',
long_description=open(
os.path.join(os.path.dirname(os.path.abspath(__file__)), 'README.md')
).read(),
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 4 - Beta',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)