-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 1.34 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
import setuptools
import os
from setup_utils import *
with open("README.md", "r") as fh:
long_description = fh.read()
with open(os.path.join(os.path.dirname(__file__), "requirements.txt"), "r") as f:
requirements = f.read().split("\n")
setuptools.setup(
name="FamcyTools", # Replace with your own username
version="0.0.33",
author="Nexuni Co Ltd. Develop Team",
author_email="developers@nexuni.com",
description="Nexuni Co Ltd. Famcy management console framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nexuni/FamcyTools.git",
license="Apache-2.0",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["famcy = FamcyTools.main:command_line_interface"]
},
install_requires=requirements,
package_dir={"FamcyTools": "FamcyTools"},
package_data=package_data_with_recursive_dirs({"FamcyTools":["scripts", "famcy.ini"]}),
test_suite="Famcy.tests",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries ",
],
python_requires='>=3.6',
)