-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (23 loc) · 689 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (23 loc) · 689 Bytes
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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
with open('VERSION') as f:
package_version = f.read()
with open('requirements.txt') as f:
dependencies = []
for line in f:
line = line.strip()
dependencies.append(line)
setup(
name='alice-core',
version=package_version,
license='MIT',
author='Pooja Shah',
author_email='writeback2pooja@gmail.com',
long_description=long_description,
packages=find_packages(exclude=['build', 'dist']),
url='https://github.com/moengage/alice',
include_package_data=True,
zip_safe=False,
install_requires=dependencies
)