-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·55 lines (51 loc) · 1.68 KB
/
setup.py
File metadata and controls
executable file
·55 lines (51 loc) · 1.68 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 find_packages, setup
import os
# Get more https://pypi.org/pypi?%3Aaction=list_classifiers
CLASSIFIERS = [
"Development Status :: Stable",
# Product description
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Customers",
# Licence used (none yet)
# "License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
# Supported versions, Python 2, Python 3 or both.
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
EXCLUDE_FROM_PACKAGES = ["project","project.*"]
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name="bankQuest",
version="1.0.0",
description="TBD",
long_description=read('README.md (TBD)'),
classifiers=CLASSIFIERS,
keywords="TBD",
author="TBD",
author_email="TBD",
maintainer="TBD",
maintainer_email="TBD",
url="TBD (github link)",
license="GPL",
platforms="OS Independent",
install_requires=["Django==5.0.2"],
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
include_package_data=True,
zip_safe=False,
project_urls={
'Documentation': 'https://docs.djangoproject.com/',
'Funding': 'TBD',
'Source': 'TBD',
'Tracker': 'TBD',
},
)