-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (31 loc) · 912 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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = "1.0rc1"
install_requires = [
# nothing
]
tests_require = [
'nose',
]
if __name__ == "__main__":
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="todoist-converter",
version=VERSION,
author="Bernhard Bockelbrink",
author_email="[email protected]",
description="A small example package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bboc/todoist-converter",
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
test_suite="nose.collector",
entry_points={
'console_scripts': [
'tdconv = tdconv.tdconv:main',
],
}
)