-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.54 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='caterpillar_api',
version='1.62',
packages=['caterpillar_api'],
url='/~https://github.com/lukedupin/caterpillar',
# I explain this later on
license='MIT',
author='Luke Dupin',
author_email='orbital.sfear@gmail.com',
description='🐛 Caterpillar Api, field management for Django without the boiler-plate.',
long_description=readme(),
long_description_content_type='text/markdown',
keywords = ['DJANGO', 'API', 'REST', 'JSON', 'JSONP', 'JSON-P'],
install_requires=['Django'],
setup_requires=["wheel"],
classifiers=[
'Development Status :: 4 - Beta',
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
# Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License', # Again, pick a license
'Programming Language :: Python :: 3',
# Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)