-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 764 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 764 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
install_requires = [
]
setup(
name='mls_api',
version='0.1',
author='Mark Rogers',
author_email='xxf4ntxx@gmail.com',
url='http://github.com/f4nt/NEED_LINK',
description='Django backend for MLS Scraper',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={},
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)