-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 899 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
from setuptools import setup
from cbuff import settings
from setuptools import setup,find_packages
ld_type = 'text/markdown'
with open('README.md') as rm:
ld = rm.read()
setup(
name = settings.name,
version = settings.version,
description = settings.description,
long_description = ld,
long_description_content_type = ld_type,
author = settings.author,
author_email = settings.author_email,
packages = find_packages(exclude=settings.exclude_packages),
url = settings.project_url,
entry_points = settings.entry_points,
classifiers = settings.classifiers,
license = settings.license,
license_files = settings.license_files,
keywords = settings.keywords,
install_requires = settings.install_requires,
python_requires = settings.python_requires,
include_package_data = settings.include_package_data,
)