setup.py 655 B

123456789101112131415161718192021
  1. from setuptools import setup, find_packages
  2. setup(
  3. name='syscall',
  4. version='0.1.0',
  5. packages=find_packages(),
  6. author='Imitatory',
  7. author_email='None',
  8. description='System command calling',
  9. long_description=open('README.md').read(),
  10. long_description_content_type='text/markdown',
  11. url='https://notabug.org/Imitatory/syscall-python-lib',
  12. classifiers=[
  13. 'Programming Language :: Python :: 3',
  14. 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
  15. 'Operating System :: OS Independent',
  16. ],
  17. python_requires='>=3.6',
  18. license='GPLv3', # Указание лицензии
  19. )