-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 1 KB
/
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
import setuptools
from distutils.command.install import INSTALL_SCHEMES
from os import path
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
try:
from WorkingDays._version import version as __version__
except ImportError:
__version__ = 'unknown'
# read the contents of your README file
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setuptools.setup(
name='workingdays',
version=__version__,
description='A collection of Workingdays date utilities/helper functions.',
long_description=long_description,
long_description_content_type='text/markdown',
author="Jeramie Fletcher",
author_email="jeramie.fletcher@gmail.com",
url="https://github.com/jeramiefletcher/workingdays",
license="GNU General Public License v3.0",
packages=setuptools.find_packages(),
install_requires=[],
include_package_data=True,
zip_safe=False)