-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (65 loc) · 2 KB
/
setup.py
File metadata and controls
77 lines (65 loc) · 2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
"""""
setup module
"""""
import setuptools
from djangular_cli.config.app_settings import djangular_root_dir, join, root
app = djangular_root_dir
here = root
__al__ = ["__version__"]
with open(join(here, 'VERSION')) as f:
__version__ = f.read().strip()
with open("README.md", "r") as fh:
long_description = fh.read()
with open(join(here, 'MANIFEST.in')) as f:
MANIFEST = f.read().strip()
extra_files = [
join(here, 'VERSION'),
join(here, 'README.md'),
join(here, 'MANIFEST.in')
]
setuptools.setup(
name="djangular-cli",
version=__version__,
include_package_data=True,
package_data={"": extra_files},
project_urls={
"Bug Tracker": "https://github.com/forafekt/djangular-cli/issues",
"Documentation": "https://github.com/forafekt/djangular-cli/tree/master/djangular_cli/docs",
"Source Code": "https://github.com/forafekt/djangular-cli",
},
packages=setuptools.find_packages(),
scripts=[
'djangular_cli/generate/bin/django-admin'
],
entry_points={
'console_scripts': [
'djangular=djangular_cli:main',
],
},
author="Jonny Doyle",
author_email="jonathan.d@programmer.net",
license="MIT",
description="Django + Angular client for complete project management & development.",
keywords="django angular client template boilerplate git automate",
platform="Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/forafekt/djangular-cli",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
],
install_requires=[
"prompt_toolkit",
"virtualenv",
"setuptools",
"django-environ",
"pyfiglet",
"pygments",
"djangular-serve",
],
python_requires='>=3.6',
)