-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (30 loc) · 1.04 KB
/
setup.py
File metadata and controls
34 lines (30 loc) · 1.04 KB
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
#!/usr/bin/env python
from setuptools import setup
requirements = open('requirements.txt').read()
readme = open('README.rst').read()
setup(
name="similar",
version="0.2",
url='http://github.com/ncrocfer/similar',
author='Nicolas Crocfer',
author_email='ncrocfer@gmail.com',
description="A similar text finder written in Python",
long_description=readme,
packages=['similar'],
include_package_data=True,
install_requires=requirements,
classifiers=(
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
),
)