-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (27 loc) · 921 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
from setuptools import setup, find_packages
setup(
name='installed_package_example',
version='0.0.1',
description='foo description',
url='',
author='foo author',
author_email='[email protected]',
license='GNU AGPL3',
packages=find_packages(),
include_package_data=True,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Framework :: Django :: 1.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)