-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (40 loc) · 1.24 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import setuptools
def main():
setuptools.setup(
name = 'AWRS',
version = '2019.08.14.1152',
description = 'weather utilities',
long_description = long_description(),
url = 'https://github.com/wdbm/AWRS',
author = 'Will Breaden Madden',
author_email = 'wbm@protonmail.ch',
license = 'GPLv3',
py_modules = [
'AWRS'
],
install_requires = [
'docopt',
'folktales'
],
entry_points = """
[console_scripts]
AWRS = AWRS:AWRS
"""
)
def long_description(
filename = 'README.md'
):
if os.path.isfile(os.path.expandvars(filename)):
try:
import pypandoc
long_description = pypandoc.convert_file(filename, 'rst')
except ImportError:
long_description = open(filename).read()
else:
long_description = ''
return long_description
if __name__ == '__main__':
main()