-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (30 loc) · 1.22 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
# Setup module for Ax/Wx
import os
from setuptools import setup, find_packages
PACKAGES = find_packages()
# Get version and release info, which is all stored in shablona/version.py
# ver_file = os.path.join('shablona', 'version.py')
# with open(ver_file) as f:
# exec(f.read())
# packages = ['csv', 'os', 'time', 'pandas', 'pickle', 'requests',
# 'urllib3', 'bs4.BeautifulSoup', 'numpy']
opts = dict(name='Ax/Wx',
maintainer='Rex Thompson',
maintainer_email='[email protected]',
description='Accident-Weather Analysis Tool',
long_description=('AxWx - Accident-Weather Analysis Tool for data'
' scraping, cleaning, merging and analysis'),
url='https://github.com/rexthompson/axwx',
# download_url="DOWNLOAD_URL",
license='MIT',
# classifiers="CLASSIFIERS",
author='Ax/Wx"',
author_email='[email protected]',
version='0.1',
packages=PACKAGES,
package_data={'axwx': ['data/*', 'data/test_wu_data/*']},
# install_requires="REQUIRES",
# requires="REQUIRES"
)
if __name__ == '__main__':
setup(**opts)