-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (43 loc) · 1.28 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
48
49
50
"""The setup script."""
import os
from setuptools import setup, find_packages
import codecs
from ant_gen.__init__ import __version__
from ant_gen.__init__ import __author__
from ant_gen.__init__ import __mail__
# Base directory of package
here = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
with codecs.open(os.path.join(here, *parts), 'r') as fp:
return fp.read()
def read_requires():
with open(os.path.join(here, "ant_gen/requirements.txt"),
"r") as reqfile:
return reqfile.read().splitlines()
with open("README.md", "r") as fh:
readme = fh.read()
setup(
name='ant_gen',
version=__version__,
description="Antenna Generator",
long_description= readme + '\n\n',
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: MIT",
"Development Status :: Beta"
],
keywords = "ant_gen",
url = 'https://github.com/JoyenBenitto/Antenna_generator',
author = __author__,
author_email = __mail__,
license = "MIT License",
packages = find_packages(),
install_requires = ["requests"],
python_requires = ">=3.8",
entry_points={
'console_scripts': ['ant_gen=ant_gen.main:cli'],
},
include_package_data=True,
tests_require=[],
zip_safe=False
)