-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 727 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 727 Bytes
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
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='anchor-topic',
version='0.1.2',
description='A package for anchor-based topic models.',
long_description=readme,
author='Michelle Yuan',
author_email='myuan@cs.umd.edu',
url='https://github.com/forest-snow/anchor-topic',
license=license,
packages=find_packages(exclude=('tests')),
install_requires=[
'numpy',
'scipy',
'numba'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)