forked from predicthq/py-address-formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 833 Bytes
/
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
import os
from setuptools import find_packages, setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='py-address-formatter',
version='0.1.0',
description='',
long_description='',
author='Denny Riadi',
author_email='',
entry_points={},
classifiers=[
'Programming Language :: Python :: 3.5',
'Development Status :: 4 - Beta',
'Topic :: Text Processing :: General',
'Operating System :: POSIX :: Linux'
],
install_requires=[
'chevron==0.13.1',
'namedlist==1.7',
'pyyaml==3.13'
],
packages=find_packages(),
dependency_links=[],
test_suite='tests',
package_data={'': ['*.yaml']},
setup_requires=[],
tests_require=[],
zip_safe=False)