-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (31 loc) · 855 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
33
34
35
36
37
"""setup.py."""
import os
from setuptools import setup
import versioneer
filename = os.path.join(os.path.dirname(__file__), 'requirements.txt')
requirements = open(filename).read().splitlines()
setup(
name='dasem',
author='Finn Aarup Nielsen',
author_email='[email protected]',
cmdclass=versioneer.get_cmdclass(),
description='Danish semantic analysis',
license='Apache',
keywords='text',
url='https://github.com/fnielsen/dasem',
packages=['dasem'],
package_data={
'dasem': [
'data/four_words.csv',
'data/compounds.txt',
'data/README.rst',
]
},
install_requires=requirements,
long_description='',
classifiers=[
'Programming Language :: Python :: 2.7',
],
tests_require=['pytest', 'flake8'],
version=versioneer.get_version(),
)