forked from colonelpanic8/okcupyd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (30 loc) · 1.21 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
37
import os
from setuptools import setup, find_packages
version = '1.0.0alpha3'
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as file:
long_description = file.read()
setup(
name="okcupyd",
version=version,
packages=find_packages(exclude=('tests*', 'examples')),
install_requires=['lxml', 'requests >= 2.4.1', 'simplejson',
'sqlalchemy >= 0.9.0', 'ipython >= 2.2.0',
'wrapt >= 1.10.0', 'coloredlogs == 5.0', 'invoke >= 0.9',
'six >= 1.8.0'],
tests_require=['tox', 'pytest', 'mock', 'contextlib2', 'vcrpy >= 1.7.0'],
package_data={'': ['*.md', '*.rst']},
author="Ivan Malison",
author_email="[email protected]",
description="A package for interacting with okcupid.com",
license="MIT",
keywords=["okcupid", "okcupyd", "pyokc", "online dating"],
url="https://github.com/IvanMalison/okcupyd",
long_description=long_description,
entry_points={"console_scripts": ["okcupyd=okcupyd:interactive"]},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)