-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (28 loc) · 913 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name = 'dact',
version = '1.3.0',
author = "Ayushman Kumar|Arkaprabha Chakraborty",
author_email="[email protected]",
long_description = long_description,
long_description_content_type = "text/markdown",
url = "https://github.com/ayushmankumar7/dact",
packages = find_packages(),
entry_points = {
'console_scripts': [
'dact = dact.__main__:main',
'dact-watch = dact.__main__:watch_react',
'dact-test = dact.__main__:testing',
'dact-install = dact.__main__:package_install'
]
},
install_requires=[
'django==3.2.0'
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)