-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 932 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
#!/usr/bin/env python
from codecs import open
from setuptools import setup, find_packages
def read(f):
return open(f, encoding='utf-8').read()
setup(name='typeguess',
version='0.0.2',
description='Data type guesser',
long_description=read('README.rst'),
author='Rylan Santinon',
author_email='rylans@gmail.com',
url='https://github.com/rylans/typeguess',
keywords=['typeguess', 'type guesser', 'datatype guesser'],
license='Apache 2.0',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities'],
packages=find_packages())