This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (48 loc) · 2.12 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
42
43
44
45
46
47
48
49
50
51
52
53
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), "README.md"), "rb") as readme:
README = str(readme.read())
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
install_requires = []
with open("requirements.txt") as reqs:
for line in reqs.read().split("\n"):
if line and not line.startswith(("#", "--", "git+ssh")):
install_requires.append(line)
setup(
name="django_commander",
version="0.1.6.dev0",
description="Easily create, organize, and log management commands and subcommands",
long_description=README, # 'http://labs.pewresearch.tech/docs/libs/django_commander',
url="https://github.com/pewresearch/django_commander",
author="Pew Research Center",
author_email="[email protected]",
install_requires=install_requires,
packages=find_packages(exclude=["contrib", "docs", "tests"]),
include_package_data=True,
keywords="",
license="GPLv2+",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
# 'Development Status :: 1 - Planning',
"Development Status :: 2 - Pre-Alpha",
# 'Development Status :: 3 - Alpha',
# 'Development Status :: 4 - Beta',
# 'Development Status :: 5 - Production/Stable',
# 'Development Status :: 6 - Mature',
# 'Development Status :: 7 - Inactive'
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
],
)