forked from debrouwere/python-snakify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 965 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 965 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
import os
from setuptools import find_packages, setup
setup(name='snakify',
version='1.1.2',
description=("Slugify a string to a valid Python variable name."),
#long_description=open('README.rst').read(),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
keywords='serialization slugification',
author='Stijn Debrouwere',
author_email='stijn@debrouwere.org',
download_url='http://www.github.com/debrouwere/python-snakify/tarball/master',
license='ISC',
test_suite='snakify.tests',
packages=find_packages(),
install_requires=[
'num2words>=0.5.4',
'unicode-slugify>=0.1.3',
]
)