-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 892 Bytes
/
Copy pathsetup.py
File metadata and controls
29 lines (28 loc) · 892 Bytes
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
from setuptools import setup
setup(
name='crew-cli',
version='1.0.0',
py_modules=['crew', 'crew_utils'],
install_requires=[
# No external dependencies yet, but we could add 'requests' later
],
entry_points={
'console_scripts': [
'crew = crew:main',
],
},
author='127 Crew',
description='A Package Manager for C/C++',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/127crew/crewpackagemanager',
license='GPL-3.0',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Build Tools',
'Intended Audience :: Developers',
],
python_requires='>=3.6',
)