-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 828 Bytes
/
setup.py
File metadata and controls
34 lines (29 loc) · 828 Bytes
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
from setuptools import setup, find_packages
with open('requirements.txt') as fh:
reqs = fh.read().splitlines()
setup(
name='newapp',
version='0.0.1',
url='https://github.com/jlandercy/newapp',
license='GPL v.3',
author='Jean Landercy',
author_email='jeanlandercy@live.com',
description='Minimal Django Package',
packages=find_packages(exclude=[]),
package_data={
'newapp': []
},
scripts=[],
python_requires='>=3.6',
install_requires=reqs,
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
entry_points={
'console_scripts': []
},
zip_safe=False,
)