-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (50 loc) · 1.49 KB
/
setup.py
File metadata and controls
58 lines (50 loc) · 1.49 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import setup, find_packages
setup(
name='polydepend',
version='1.2.1',
packages=find_packages(where='src'),
package_dir={'': 'src'},
# Dependencies
install_requires=[
'requests>=2.25.0',
'packaging', # Handles version parsing
],
# Development dependencies
extras_require={
'dev': [
'pytest',
'coverage',
'black',
'mypy'
]
},
# CLI and GUI entry points
entry_points={
'console_scripts': [
'polydepend-cli=cli:main',
'polydepend-gui=gui:main'
]
},
# Metadata
author='Simanga Mchunu',
author_email='datawithsima@gmail.com',
description='Multi-language Dependency Management Tool',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/Simacoder/polydepend',
# Classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution'
],
# Requirements
python_requires='>=3.7',
# Include additional files specified in MANIFEST.in
include_package_data=True,
)