-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (27 loc) · 1.11 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
from setuptools import setup
with open('README.md') as readme_file:
readme = readme_file.read()
with open('requirements.txt') as requirement_file:
requirements_list = requirement_file.readlines()
requirements_list = [lib.replace('\n', '') for lib in requirements_list]
requirements = requirements_list
setup(
name='Ad Campaign Performance',
version='0.1.0',
description='A python implementation of classical, sequential, and machine learning A/B testing to measure brand'
'awareness',
url='https://github.com/Yonas-T/ab_testing',
author='10Academy Batch-5 Group-5',
license='MIT License',
install_requires=requirements,
long_description=readme,
classifiers=[
'Development Status :: 3 - Under Development',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)