-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
59 lines (51 loc) · 1.73 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# coding=utf-8
from setuptools import setup, find_packages
from codecs import open
import os
from distutils.core import setup, Command
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return open(path, encoding='utf-8').read()
# class PyTest(Command):
# user_options = []
# def initialize_options(self):
# pass
# def finalize_options(self):
# pass
# def run(self):
# import sys,subprocess
# errno = subprocess.call([sys.executable, 'runtests.py'])
# raise SystemExit(errno)
setup(
name="StreamLib",
version="1.0.1",
packages=find_packages(),
# development metadata
zip_safe=True,
# metadata for upload to PyPI
author="Jiecao Chen",
author_email="[email protected]",
description="StreamLib: Library of streaming algorithms in python",
license="MIT",
keywords="Streaming Algorithms",
url="https://github.com/jiecchen/StreamLib",
classifiers=[
# "Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Researchers",
"Intended Audience :: Data Scientists",
"License :: OSI Approved :: MIT License",
"Topic :: Algorithms",
"Topic :: Algorithms :: Streaming Algorithms",
"Topic :: Utilities",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
# "Programming Language :: Python :: 3.3",
# "Programming Language :: Python :: 3.4",
# "Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent"
],
long_description=read('README.rst'),
install_requires=['mmh3'],
# cmdclass = {'test': PyTest},
)