-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (51 loc) · 1.58 KB
/
Copy pathsetup.py
File metadata and controls
55 lines (51 loc) · 1.58 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
from setuptools import setup
from any_project import __program__
from any_project import __version__
from any_project import __desc__
def readme():
with open('./README.md') as readme_fp:
README = readme_fp.read()
return README
setup(
name=__program__,
version=__version__,
description=__desc__,
long_description=readme(),
long_description_content_type='text/markdown',
url="https://github.com/antaripchatterjee/Any-Project",
author="Antarip Chatterjee",
author_email="antarip.chatterjee22@gmail.com",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Environment :: Console",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Education",
"Topic :: Software Development"
],
packages=["any_project"],
install_requires=[
'gitdb==4.0.7',
'GitPython==3.1.14',
'oyaml==1.0',
'PyMsgPrompt==1.3.0',
'python-dotenv==0.17.0',
'PyYAML==5.4.1',
'Send2Trash==1.5.0',
'smmap==4.0.0'
],
include_package_data=True,
entry_points={
"console_scripts" : [
"any-project=any_project.cli:main"
]
}
)