-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (33 loc) · 965 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
38
39
#!/usr/bin/env python
from os import path
from setuptools import setup, find_packages
here = path.dirname(path.abspath(__file__))
long_description = None
try:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
pass
try:
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
except Exception:
pass
setup(
name='sheetgen',
description='Generating of EAN codesheets made easy.',
long_description=long_description,
author='Krzysztof Jagiello',
author_email='[email protected]',
url='https://github.com/uppsaladatavetare/codesheet-generator',
version=__import__('sheetgen').__version__,
packages=find_packages(),
include_package_data=True,
license='MIT license',
zip_safe=False,
entry_points={
'console_scripts': [
'sheetgen = sheetgen.main:main',
],
},
)