-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.32 KB
/
setup.py
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
from setuptools import setup, find_packages
setup(
name='envrpt',
version='0.2.0',
description='Analyzes the packages installed in a Python environment',
long_description=open('README.rst', 'r').read(),
keywords='virtual environment package dependency analysis',
author='Jason Simeone',
author_email='[email protected]',
license='MIT',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
'Development Status :: 4 - Beta',
],
url='https://github.com/jayclassless/envrpt',
package_dir={'': 'src'},
packages=find_packages('src'),
zip_safe=True,
include_package_data=True,
entry_points={
'console_scripts': [
'envrpt = envrpt.cli:main',
],
},
install_requires=[
'pip>=10',
],
)