-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (39 loc) · 1.32 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
from setuptools import find_packages, setup
import os
here = os.path.abspath(os.path.dirname(__file__))
version_path = os.path.join(here, 'VERSION')
readme_path = os.path.join(here, 'README.md')
requirements_path = os.path.join(here, 'requirements.txt')
with open(readme_path, 'r') as readme_file:
readme = readme_file.read()
with open(requirements_path, 'r') as requirements_file:
requirements = requirements_file.read().splitlines()
with open(version_path, 'r') as version_file:
version = version_file.read().strip()
setup(
# Application name:
name="eventique",
# Version number (initial):
version=version,
# Application author details:
author="MAJDOUB Khalid",
author_email="[email protected]",
# Packages
packages=find_packages(),
# Include additional files into the package
include_package_data=True,
# Details
url="https://github.com/hadamrd/eventique",
#
# license="LICENSE.txt",
description="Light and standalone python events manager.",
long_description=readme,
long_description_content_type='text/markdown',
# Dependent packages (distributions)
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
'Intended Audience :: Developers',
]
)