forked from msabramo/pyokc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 864 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
import os
import re
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "pyokc",
version = "0.2.3",
packages = find_packages(),
install_requires = ['lxml', 'requests'],
package_data = {
'': ['*.md', '*.rst']
},
# metadata for upload to PyPI
author = "Evan Fredericksen",
author_email = "[email protected]",
description = "A package for interacting with OKCupid.com",
license = "MIT",
keywords = "python okcupid",
url = "https://github.com/evfredericksen/pyokc",
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)