|
| 1 | +import setuptools |
| 2 | + |
| 3 | +with open("README.md", "r") as fh: |
| 4 | + long_description = fh.read() |
| 5 | + |
| 6 | +setuptools.setup( |
| 7 | + name='1build', |
| 8 | + version='0.0.4', |
| 9 | + scripts=['1build'], |
| 10 | + packages=setuptools.find_packages(), |
| 11 | + install_requires=['ruamel.yaml>=0.15.94'], |
| 12 | + setup_requires=['ruamel.yaml>=0.15.94'], |
| 13 | + url='https://github.com/gopinath-langote/1build', |
| 14 | + license='MIT', |
| 15 | + author='Gopinath Langote', |
| 16 | + |
| 17 | + description='1 build command for all your build tools for each project.', |
| 18 | + long_description=long_description, |
| 19 | + long_description_content_type="text/markdown", |
| 20 | + classifiers=[ |
| 21 | + "License :: OSI Approved :: MIT License", |
| 22 | + "Operating System :: OS Independent", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.0", |
| 25 | + "Programming Language :: Python :: 3.1", |
| 26 | + "Programming Language :: Python :: 3.2", |
| 27 | + "Programming Language :: Python :: 3.3", |
| 28 | + "Programming Language :: Python :: 3.4", |
| 29 | + "Programming Language :: Python :: 3.5", |
| 30 | + "Programming Language :: Python :: 3.6", |
| 31 | + "Programming Language :: Python :: 3.7", |
| 32 | + "Programming Language :: Python :: 3.8", |
| 33 | + "Topic :: Terminals", |
| 34 | + "Topic :: Software Development :: Build Tools" |
| 35 | + ], |
| 36 | +) |
0 commit comments