-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 946 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 946 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
import os
from setuptools import setup, find_packages
from pip.req import parse_requirements
from pip.download import PipSession
version = '0.1.0'
def read(f):
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
install_reqs = parse_requirements('requirements.txt', session=PipSession())
reqs = [str(ir.req) for ir in install_reqs]
setup(name='emojitations',
version=version,
description=('Makes available emoji annotation data'),
long_description='\n\n'.join((read('README.md'), read('CHANGELOG'))),
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Other Audience',
'Programming Language :: Python :: 3'],
author='K.C.Saff',
author_email='kc@saff.net',
url='https://github.com/kcsaff/emojitations',
license='MIT',
packages=find_packages(),
install_requires=reqs,
include_package_data=False,
)