123456789101112131415161718192021 |
- from setuptools import setup, find_packages
- setup(
- name='syscall',
- version='0.1.0',
- packages=find_packages(),
- author='Imitatory',
- author_email='None',
- description='System command calling',
- long_description=open('README.md').read(),
- long_description_content_type='text/markdown',
- url='https://notabug.org/Imitatory/syscall-python-lib',
- classifiers=[
- 'Programming Language :: Python :: 3',
- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
- 'Operating System :: OS Independent',
- ],
- python_requires='>=3.6',
- license='GPLv3', # Указание лицензии
- )
|