-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.26 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
#!/usr/bin/env python3
#
# Copyright (c) 2018 Tatu Ylonen. See LICENSE and https://ylonen.org
from setuptools import setup, Extension
with open("README.md", "r") as f:
long_description = f.read()
setup(name="tokentree",
version="0.1.0",
description="Optimized tree of integer tokens with counts and data",
long_description=long_description,
long_description_content_type="text/markdown",
author="Tatu Ylonen",
author_email="ylo@clausal.com",
url="https://ylonen.org",
license="MIT",
download_url="https://github.com/tatuylonen/tokentree",
packages=["tokentree"],
setup_requires=["cython",
"setuptools>=18.0"],
ext_modules=[Extension("tokentree.ctokentree",
sources=["tokentree/ctokentree.pyx"])],
test_suite="tokentree.tests",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
])