forked from CityOfBoston/CityScoreToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (23 loc) · 735 Bytes
/
setup.py
File metadata and controls
executable file
·25 lines (23 loc) · 735 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
#!/usr/bin/env python
from setuptools import setup
setup(
# GETTING-STARTED: set your app name:
name='YourAppName',
# GETTING-STARTED: set your app version:
version='1.0',
# GETTING-STARTED: set your app description:
description='OpenShift App',
# GETTING-STARTED: set author name (your name):
author='Your Name',
# GETTING-STARTED: set author email (your email):
author_email='example@example.com',
# GETTING-STARTED: set author url (your url):
url='http://www.python.org/sigs/distutils-sig/',
# GETTING-STARTED: define required django version:
install_requires=[
'Django==1.8.4'
],
dependency_links=[
'https://pypi.python.org/simple/django/'
],
)